home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Programming / AmigaE / Src / Modules / diskfont / oterrors.e < prev   
Encoding:
Text File  |  1997-03-09  |  359 b   |  19 lines

  1. OPT MODULE
  2. OPT EXPORT
  3.  
  4. CONST OTERR_FAILURE=-1,
  5.       OTERR_SUCCESS=0,
  6.       OTERR_BADTAG=1,
  7.       OTERR_UNKNOWNTAG=2,
  8.       OTERR_BADDATA=3,
  9.       OTERR_NOMEMORY=4,
  10.       OTERR_NOFACE=5,
  11.       OTERR_BADFACE=6,
  12.       OTERR_NOGLYPH=7,
  13.       OTERR_BADGLYPH=8,
  14.       OTERR_NOSHEAR=9,
  15.       OTERR_NOROTATE=10,
  16.       OTERR_TOOSMALL=11,
  17.       OTERR_UNKNOWNGLYPH=12
  18.  
  19.